This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Subject: Web Service Provider generate MinOccurs in WSDL
Feedback Type: Problem
Product Area: Domino Designer on Eclipse (DDE)
Technical Area: Application Development
Platform: ALL
Release: 8.5.3
Reproducible: Always
I am working on the Release 8.5.3 Revision 20110916.0921 (Release 8.5.3) and have developed a Web service provider for consumption by our central webservice ESB.
Typicall the following piece of script:
Public Class NHBRCDetails
Public BuilderName As Xsd_String
Public NHBRCRegNo As Xsd_String
Public PlanEnrolmentNo As Xsd_String
Public PaymentAuthoritySigned As Xsd_String
Public EnrolmentFee As Xsd_Double
Public ExemptionCert As Xsd_String
Public NHBRCConfirmation As Xsd_String
Public PaymentDate As Xsd_String
Public PaymentInstruction As Xsd_String
Public Sub NHBRCDetails (BuilderName As String, NHBRCRegNo As String, PlanEnrolmentNo As String, PaymentAuthoritySigned As String, _
EnrolmentFee As Double, ExemptionCert As String, NHBRCConfirmation As String, PaymentDate As String, PaymentInstruction As String )
End Sub
Public Function getBuilderName () As String
getBuilderName = BuilderName.Getvalueasstring
End Function
Public Function getNHBRCRegNo () As String
getNHBRCRegNo = NHBRCRegNo.Getvalueasstring
End Function
Public Function getPlanEnrolmentNo () As String
getPlanEnrolmentNo = PlanEnrolmentNo.Getvalueasstring
End Function
Public Function getPaymentAuthoritySigned () As String
getPaymentAuthoritySigned = PaymentAuthoritySigned.Getvalueasstring
End Function
Public Function getEnrolmentFee () As Double
getEnrolmentFee = EnrolmentFee.Getvalueasstring
End Function
Public Function getExemptionCert () As String
getExemptionCert = ExemptionCert.Getvalueasstring
End Function
Public Function getNHBRCConfirmation () As String
getNHBRCConfirmation = NHBRCConfirmation.Getvalueasstring
End Function
Public Function getPaymentDate () As String
getPaymentDate = PaymentDate.Getvalueasstring
End Function
Public Function getPaymentInstruction () As String
getPaymentInstruction = PaymentInstruction.Getvalueasstring
End Function
The requirement from ESB is that we have to add the option Minoccurrs="0" to every line of the WSDL, so that every field is optional.
Any ideas how to code this in Lotusscript?
Ellen
Feedback number WEBB98JBHG created by ~Joseph Minkromanoopsi on 06/10/2013
Status: Open
Comments: